home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / CGESL.z / CGESL
Text File  |  1996-03-14  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. CCCCGGGGEEEESSSSLLLL((((3333FFFF))))                                                            CCCCGGGGEEEESSSSLLLL((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CGESL   - CGESL solves the complex system A * X = B  or  CTRANS(A) * X =
  10.      B using the factors computed by CGECO or CGEFA.
  11.  
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSYYYYSSSS
  14.       SUBROUTINE CGESL(A,LDA,N,IPVT,B,JOB)
  15.  
  16. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  17.      On Entry
  18.  
  19.      AAAA COMPLEX(LDA, N)
  20.         the output from CGECO or CGEFA.
  21.  
  22.      LLLLDDDDAAAA INTEGER
  23.         the leading dimension of the array  A .
  24.  
  25.      NNNN INTEGER
  26.         the order of the matrix  A .
  27.  
  28.      IIIIPPPPVVVVTTTT INTEGER(N)
  29.         the pivot vector from CGECO or CGEFA.
  30.  
  31.      BBBB COMPLEX(N)
  32.         the right hand side vector.
  33.  
  34.      JJJJOOOOBBBB INTEGER
  35.         = 0         to solve  A*X = B ,
  36.         = nonzero   to solve  CTRANS(A)*X = B  where
  37.         CTRANS(A)  is the conjugate transpose.  On Return
  38.  
  39.      BBBB the solution vector  X . Error Condition
  40.  
  41.      AAAA division by zero will occur if the input factor contains a zero on the
  42.      diagonal.  Technically this indicates singularity but it is often caused
  43.      by improper arguments or improper setting of LDA .  It will not occur if
  44.      the subroutines are called correctly and if CGECO has set RCOND .GT. 0.0
  45.      or CGEFA has set INFO .EQ. 0 .  To compute  INVERSE(A) * C  where  C  is
  46.      a matrix with  P  columns
  47.         CALL CGECO(A,LDA,N,IPVT,RCOND,Z)
  48.         IF (RCOND is too small) GO TO ...
  49.         DO 10 J = 1, P
  50.         CALL CGESL(A,LDA,N,IPVT,C(1,J),0) 10 CONTINUE LINPACK.  This version
  51.      dated 08/14/78 .  Cleve Moler, University of New Mexico, Argonne National
  52.      Lab.  Subroutines and Functions BLAS CAXPY,CDOTC Fortran CONJG
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.